8f62b2d41d37d29d2811f91c98fc46e9496c4328,src/frontend/org/voltdb/client/Distributer.java,NodeConnection,handleMessage,#ByteBuffer#Connection#,462
Before Change
}
int clusterRoundTrip = response.getClusterRoundtrip();
m_rateLimiter.transactionResponseReceived(nowNanos, clusterRoundTrip);
updateStats(stuff.name, deltaNanos, clusterRoundTrip, abort, error);
response.setClientRoundtrip(deltaNanos);
assert(response.getHash() == null); // make sure it didn't sneak into wire protocol
After Change
}
int clusterRoundTrip = response.getClusterRoundtrip();
if (!stuff.ignoreBackpressure) {
m_rateLimiter.transactionResponseReceived(nowNanos, clusterRoundTrip);
}
updateStats(stuff.name, deltaNanos, clusterRoundTrip, abort, error);
response.setClientRoundtrip(deltaNanos);